home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Herois / Abertura.Cst / 00006_Mascara- Script.ls < prev    next >
Encoding:
Text File  |  1999-03-19  |  371 b   |  22 lines

  1. on exitFrame
  2.   global mantra
  3.   if not mantra and the timer > 180 then
  4.     set the volume of sound 2 to 255
  5.     puppetSound 2, "Mantra2"
  6.     sound fadeIn 2,30
  7.     set mantra = true
  8.     updateStage
  9.   end if
  10.   
  11.   
  12.   if the timer > 300 then
  13.     -- set the movieRate of sprite 3 to 0
  14.     go the frame + 1
  15.   else
  16.     go the frame
  17.   end if
  18. end
  19.  
  20. on mouseUp
  21.   go the frame + 1
  22. end